Return to start page

Core/Interface/Library Multiboard.j

Code

		
1			library ALibraryCoreInterfaceMultiboard
2
3 function ShowMultiboardForPlayer takes player whichPlayer, multiboard whichMultiboard, boolean show returns nothing
4 local player localPlayer = GetLocalPlayer()
5 if (whichPlayer == localPlayer) then
6 call MultiboardDisplay(whichMultiboard, show)
7 endif
8 set localPlayer = null
9 endfunction
10
11 endlibrary